Enums.cs
Language: C#
Last Modified: 2020-06-27 1:58:30 PM UTC
File Size: 1573 bytes
Last Modified: 2020-06-27 1:58:30 PM UTC
File Size: 1573 bytes
http://www.penguinstew.ca/example/dataviewer/Model/Enums.cs
���usingSystem;
namespaceBudgeterModel
{
publicclassEnums
{
[Flags]
publicenumEditType
{
NewItem=0x1
FirstItem=0x2
}
<summary>
Containsthebaseaccounttypes
<summary>
publicenumAccounts
{
Savings=0
Chequing=1
Cash=2
Special=3
External=4
Credit=5
};
publicenumAllowedAccounts
{
External=0
Personal=1
Special=2
}
<summary>
Typesoftransactionsusedforradiobuttons
<summary>
publicenumTransactionType
{
Regular=0
Transfer=1
Special=2
}
<summary>
Indicatesthedirectionofthetransfer
<summary>
publicenumTransactionDirection
{
To=0
From=1
}
<summary>
Directionsofrecurringpayments
<summary>
publicenumPaymentDirection
{
Income=0
Expense=1
}
<summary>
TypesofPaymentcalculations
<summary>
publicenumPaymentCalculationType
{
Item=0
Average=1
Min=2
Max=3
};
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73